@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: rgb(46, 18, 67);
    --header-height: 50px;
    --black-color: #2c456b;
    --black-color-light: #233755;
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);
    --normal-font-size: 0.938rem;
    --font-regular: 400;
    --font-semi-bold: 600;
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 1rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", system-ui;
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin-inline: 1.5rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black-color);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
    z-index: var(--z-fixed);
}

/* Navigation Bar Style */
.nav {
    height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
    color: var(--white-color);
}

.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    font-weight: var(--font-semi-bold);


}

.nav__logo .logo-image {
    height: 63px;
}



.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
    opacity: 0;
}

/* Navigation Bar for Mobile Devices */
@media screen and (max-width: 1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--black-color);
        padding-top: 1rem;
    }
}

.nav__link {
    color: var(--white-color);
    background-color: var(--black-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.nav__link:hover {
    background-color: var(--black-color-light);
}


/* Show Menu */
.show-menu {
    opacity: 1;
    top: calc(var(--header-height) + 30px);
    pointer-events: initial;
}


/* Show Icon */
.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}


/* DropDown */
.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 0.8rem;
    font-weight: initial;
    transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    background-color: var(--black-color-light);
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color 0.3s;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

/* Dropdown SubMenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
}

/* Rotate Dropdown Icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/* Dropdown Submenu */
.dropdown__add {
    margin-left: auto;
    font-size: 0.8rem;
}

.dropdown__sublink {
    background-color: var(--black-color-lighten);
}


/* BREAKPOINT */
/* for Small Devices */
@media screen and (max-width: 1110px) {
    .container {
        margin-inline: 1rem;
    }

    .nav {
        height: calc(var(--header-height) + 30px);
    }

    .nav__link {
        padding-inline: 1rem;
    }
}

/* For larger Devices */
@media screen and (min-width: 1118px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 30px);
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 3rem;
    }

    .nav__link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: 0.35rem;
    }

    .nav__link:hover {
        background-color: transparent;
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s, top 0.3s;
    }

    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1rem 3.5rem;
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem;
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: 0.5rem;
    }

    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 4.8rem;
        pointer-events: initial;
        transition: top 0.3s;
    }

    .dropdown__subitem:hover>.dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top 0.3s;
    }
}

/* Homepage Content Style */


#main-cover {
    background-image: linear-gradient(133deg, #2af5bf 0%, #009efd 100%);
}

#main-cover .main-cover-title {
    font-size: 30px;
    font-weight: 600;
}

#main-cover .description {
    font-size: 16px;
}

#main-cover .btn {
    background-color: #3c649f;
    padding: 5px 20px;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    transition: all 0.4s ease-in-out;
}

#main-cover .btn:hover {
    color: #3c649f;
    background-color: transparent;
    border: 1px solid #3c649f;
}

#main-cover .testing-background {
    background-image: linear-gradient(133deg, #2af598 0%, #009efd 100%);
}

.homepage-class-container a {
    color: black;
}

.homepage-class-top-header {
    text-align: center;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 30px;
}



.home-view-all-btn {
    margin-top: 20px;
    background-color: var(--black-color);
    padding: 10px 20px;
    border: 1px solid var(--black-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.home-view-all-btn a {
    color: white;
    font-family: "Montserrat", system-ui;
}

.home-view-all-btn:hover {
    background-color: white;
}

.home-view-all-btn:hover a {
    color: var(--black-color);
}

.yoga-class-card {
    background-color: #f0f5ff;
    margin: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.yoga-class-card a {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    color: black;
}

.yoga-class-card:hover {
    scale: 1.05;
}

.yoga-class-card a .yoga-icon {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.yoga-class-card a .yoga-homepage-title {
    padding-top: 10px;
    font-weight: 600;
    font-size: 15px;
}

.yoga-class-card a .yoga-homepage-description {
    padding-top: 10px;
    text-align: left;
    font-size: 13px;
    color: #6f6c6c;
}







#benefit-of-yoga-section .homepage-benefit-title {
    color: white;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
    font-size: 25px;
}

#benefit-of-yoga-section .homepage-description-card {
    padding: 30px 20px;
}

#benefit-of-yoga-section .homepage-description-card .homepage-benefit-description {
    color: #f5e3e3;
    text-align: left;
    padding-bottom: 10px;
    font-weight: 400;
}

#benefit-of-yoga-section .btn {
    color: #2c456b;
    background-color: white;
    padding: 5px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#benefit-of-yoga-section .btn:hover {
    color: white;
    background-color: #2c456b;
    border: 1px solid white;
}



#tip-and-tutorials .homepage-video-card .video-feature-image {
    width: 100%;
    position: relative;
}

#tip-and-tutorials .homepage-video-card .video-feature-image .image-feature {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

#tip-and-tutorials .homepage-video-card .video-feature-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(54, 54, 54, 0.232);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

#tip-and-tutorials .homepage-video-card .video-feature-image .overlay i {
    font-size: 40px;
    color: rgb(255, 255, 255);
    opacity: 0.8;
}

#tip-and-tutorials .homepage-video-card .video-feature-image .overlay:hover {
    background-color: rgba(255, 255, 255, 0.594);

    i {
        color: #2c456b;
    }
}


#footer {
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

#footer .footer-contact {
    font-size: 16px;
    font-weight: 400;
}

#footer .footer-about-text {
    width: 80%;
}

#footer .footer-social-icon {
    display: flex;
    gap: 7px;
}

#footer .footer-social-icon a {
    color: black;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}

#footer .footer-social-icon a:hover {
    color: #2c456b;
    scale: 1.2;
}

.image-box-height {
    height: 120px;
}

.video-popup {
    position: fixed;
    background-color: rgba(11, 11, 11, 0.753);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    scale: 0;
}

.video-popup .video-area {
    margin: 0 auto;
}

.video-popup .close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--black-color);
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.video-popup.active {
    scale: 1;
}


/* CLASS PAGE STYLE */
#classes-main-section {
    background-color: orange;
}

.class-main-calendar {
    border-radius: 10px 10px 0px 0px;
    background-color: #e6ffff;
}

/* Calendar Style */
.custom-container {
    max-width: 100%;
    margin: 0px auto;
    font-family: "Montserrat";
}

.custom-container h1.testing-class {
    font-size: 16px;
    font-weight: 400;
}

.custom-container .wrapper {
    width: 100%;
    border-radius: 10px;
    margin: 0 auto;
}

.custom-container .wrapper header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 10px;
}

.custom-container .wrapper header .current-date {
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}

.custom-container .wrapper header .icons span {
    display: inline-block;
    height: 38px;
    width: 38px;
    margin: 0 1px;
    color: #878787;
    font-size: 1.9rem;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    cursor: pointer;
}

.custom-container .wrapper header .icons span:hover {
    background: #f2f2f2;
    scale: 1.1;
}

.custom-container .wrapper header .icons span:last-child {
    margin-right: -10px;
}

.custom-container .wrapper header .icons-monthly span {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin: 0 0px;
    color: #1a1919;
    font-size: 0.8rem;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #f8f6f6;
    border: solid 1px #d5cccc;
    transition: all 0.2s ease-in-out;
}

.custom-container .wrapper header .icons-monthly span:hover {
    background: #f2f2f2;
    scale: 1.1;
}

.custom-container .wrapper header .icons-monthly span:last-child {
    margin-right: -10px;
}

.custom-container .wrapper .days-table {
    padding: 13px 25px 18px;
}

.custom-container .wrapper .days-table .icons span {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin: 0 1px;
    color: #1a1919;
    font-size: 0.8rem;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #f8f6f6;
    border: solid 1px #d5cccc;
    transition: all 0.2s ease-in-out;
}

.custom-container .wrapper .days-table .icons span:hover {
    scale: 1.1;
}

.custom-container .calendar {
    padding: 20px;
    width: 100%;
}

.custom-container .calendar ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    text-align: center;
}

.custom-container .calendar ul li {
    width: calc(100%/7);
    position: relative;
}

.custom-container .calendar .weeks li {
    font-weight: 400;
    text-transform: uppercase;
}

.custom-container .calendar .days {
    margin-bottom: 0px;
}

.custom-container .calendar .days li {
    cursor: pointer;
    z-index: 1;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.custom-container .calendar .days li:hover {
    scale: 1.1;
}

.custom-container .calendar .days li::before {
    position: absolute;
    content: "";
    height: 40px;
    width: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    display: none;
}

.custom-container .calendar .days li:hover::before {
    background: #f2f2f2;
    display: none;
}

.custom-container .calendar .days li.inactive {
    color: #aaa;
    pointer-events: none;
}

.custom-container .calendar .days li.active {
    color: var(--black-color);
    font-weight: 700;
}

.custom-container .calendar .days li.active::before {
    background: #9b59b6;
}

.custom-container .calendar-filter {
    padding: 0px 30px 20px;
    width: 100%;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
}

.custom-container .calendar-filter .calendar-today-btn {
    background-color: #fff;
    width: 100%;
    padding: 5px 20px;
    border-radius: 50px;
    border: 1px solid var(--black-color);
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: 600;
}

.custom-container .calendar-filter .calendar-today-btn a {
    color: black;
    text-transform: uppercase;

    transition: all 0.3s ease-in-out;
}

.custom-container .calendar-filter .calendar-today-btn:hover {
    background-color: var(--black-color);
}

.custom-container .calendar-filter .calendar-today-btn:hover a {
    color: white;
}

.custom-container .calendar-filter .calendar-showall-btn {
    background-color: #fff;
    width: 100%;
    padding: 5px 20px;
    border-radius: 50px;
    border: 1px solid var(--black-color);
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: 600;
}

.custom-container .calendar-filter .calendar-showall-btn a {
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.custom-container .calendar-filter .calendar-showall-btn:hover {
    background-color: var(--black-color);
}

.custom-container .calendar-filter .calendar-showall-btn:hover a {
    color: white;
}

/* .custom-container .calendar-filter #calendar-filter-type-yoga {
    background-color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    width: 100%;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 500;
} */

/* .custom-container .calendar-filter #calendar-filter-coach-name {
    background-color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    width: 100%;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 500;
} */


#result {
    background-color: #ffffff;
    padding: 0px 30px 20px;
    border-radius: 0px 0px 10px 10px;
}

#filter-data-show {
    padding-top: 30px;
    padding-bottom: 30px;
}

#filter-data-show .class-item-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    column-gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#filter-data-show .class-item-card .class-item-img {
    width: 100%;
    border-radius: 5px;
}

#filter-data-show .class-item-card .class-item-title {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
}

#filter-data-show .class-item-card .coach-detail {
    display: flex;
    align-items: center;
}

#filter-data-show .class-item-card .coach-detail a {
    text-decoration: none;
}

#filter-data-show .class-item-card .coach-detail .class-item-coach-img {
    height: 25px;
    width: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#filter-data-show .class-item-card .coach-detail .class-item-coach-name {
    font-size: 15px;
    font-style: italic;
    color: black;
}

#filter-data-show .class-item-card .class-item-description {
    font-size: 14px;
    font-weight: 400;
}

#filter-data-show .class-item-card .class-card-date {
    display: flex;
    gap: 10px;
    padding-bottom: 5px;
}

#filter-data-show .class-item-card .class-card-time {
    display: flex;
    gap: 10px;
}

/* background-color: orange;
 */
#page-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#page-pagination .page-pagination-button {
    padding: 10px;
    cursor: pointer;
    border: none;
    font-weight: 400;
    font-family: 'Montserrat';
    background-color: white;
    color: #a9a8a8;
    transition: all 0.3s ease-in-out;
}

#page-pagination .page-pagination-button:hover {
    color: var(--black-color);
    font-weight: 700;
    scale: 1.2;
}

#page-pagination .first-page-btn,
#page-pagination .last-page-btn {
    color: var(--black-color);
    margin-top: 3px;
}

#page-pagination .current-page {
    color: var(--black-color);
    font-weight: 700;
    scale: 1.2;
    pointer-events: none;
}




/* ABOUT US PAGE */
.about-us-section-intro {
    column-gap: 20px;
}

.about-us-section-history-vision-mission {
    column-gap: 20px;
}

.about-us-history-title.pb-2 {
    text-transform: uppercase;
}

.about-us-section-certificate {
    column-gap: 20px;
}

.about-us-section-certificate .img-certificate {
    width: 100%;
}

.about-us-section-coach {
    column-gap: 20px;
}

.about-us-section-coach .coach-profile-all-list {
    column-gap: 20px;
}

.about-us-section-coach .coach-profile-all-list .coach-profile-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.079) 0px 8px 24px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.about-us-section-coach .coach-profile-all-list .coach-profile-card .coach-profile-img {
    align-items: center;
    display: flex;
    justify-content: center;
}

.about-us-section-coach .coach-profile-all-list .coach-profile-card .coach-profile-img .coach-image-box {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.about-us-section-coach .coach-profile-all-list .coach-profile-card .coach-social-link {
    display: flex;
    gap: 10px;
}

.about-us-section-coach .coach-profile-all-list .coach-profile-card .coach-social-link a {
    color: black;
    font-size: 20px;
    transition: all 0.2s ease-in-out;
}

.about-us-section-coach .coach-profile-all-list .coach-profile-card .coach-social-link a:hover {
    scale: 1.1;
}




#tip-and-tutorial-container {
    width: 50%;
    margin: 0 auto;
}

#tip-and-tutorial-container .video-item {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#tip-and-tutorial-container .video-feature-image {
    width: 100%;
    position: relative;
}

#tip-and-tutorial-container .video-feature-image .image-feature {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

#tip-and-tutorial-container .video-feature-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background-color: rgba(54, 54, 54, 0.232);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

#tip-and-tutorial-container .video-feature-image .overlay i {
    font-size: 40px;
    color: #fff;
    opacity: 0.8;
}

#tip-and-tutorial-container .video-feature-image .overlay:hover {
    background-color: rgba(255, 255, 255, 0.594);
}

#tip-and-tutorial-container .video-feature-image .overlay:hover i {
    color: #2c456b;
}

#tip-and-tutorial-container .video-item-title {
    color: #343434;
    font-size: 16px;
    font-weight: 600;
}

#tip-and-tutorial-container .video-item-date {
    color: #5a5a5a;
    font-size: 12px;
}

#tip-and-tutorial-container .video-item-description {
    color: #181717;
    font-size: 14px;
}

#tip-and-tutorial-container .read-more-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: "Montserrat", system-ui;
    font-size: 14px;
    font-style: italic;
    color: black;
}



/* EVENTS PAGE STYLE */
/* background-color: orange;
 */
.event-page-container .upcoming-text {
    text-transform: uppercase;
}

.event-page-container .event-card .event-image {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 20px;
}

.event-page-container .event-card .event-cart-title {
    padding-top: 20px;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
}

.event-page-container .event-card .event-cart-date {
    display: flex;
    padding-bottom: 5px;
}

.event-page-container .event-card .join-btn {
    margin-top: 10px;
    display: flex;
    background-color: #95baf3;
    width: 40%;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #95baf3;
    transition: all 0.2s ease-in-out;
}

.event-page-container .event-card .join-btn a {
    color: white;
    font-weight: 600;
}

.event-page-container .event-card .join-btn:hover {
    background-color: white;
}

.event-page-container .event-card .join-btn:hover a {
    color: #95baf3;
}

.annoucement-page-container {
    width: 50%;
    margin: 0 auto;
}

.annoucement-page-container .announcement-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}



/* Contact Page Style */
.contact-page-container .footer-social-icon {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.contact-page-container .footer-social-icon a {
    color: black;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}

.contact-page-container .footer-social-icon a:hover {
    color: #2c456b;
    scale: 1.2;
}


select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    cursor: inherit;
    line-height: inherit;
    z-index: 100;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;

    &::-ms-expand {
        display: none;
    }

    outline: none;
}

.select {
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;

    select,
    &::after {
        grid-area: select;
    }

    max-width: 30ch;

    border: 1px solid var(--black-color);
    border-radius: 1.25em;
    padding: 0.25em 0.5em;

    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1.1;


    background-color: #fff;
    background-image: linear-gradient(to top, #f9f9f9, #fff 33%);


    /* &:not(.select--multiple)::after {
        content: "";
        justify-self: end;
        width: 0.8em;
        height: 0.5em;
        background-color: black;
        clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    } */
}

.select::after {
    content: "";
    justify-self: end;
    width: 0.5em;
    height: 0.4em;
    background-color: var(--black-color);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select:focus+.focus {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid var(--black-color);
    border-radius: inherit;
}

.yoga-type-page-cover {
    padding-top: 250px;
    padding-bottom: 250px;
}



/* Responsive Style */

/* Extra small devices (phones, 600px and down) */
@media screen and (max-width: 600px) {

    #main-cover .main-cover-title {
        padding-top: 90px;
    }

    .homepage-class-top-header {
        text-align: center;
        padding-bottom: 20px;
    }

    #benefit-of-yoga-section .homepage-description-card {
        padding: 30px 0px;
    }

    #footer .footer-about-text {
        width: 100%;
    }

    .home-view-all-btn {
        text-align: center;
    }

    .custom-container .wrapper header .current-date {
        font-size: 20px;
    }

    .custom-container .calendar {
        padding: 5px;
        width: 100%;
    }

    .custom-container .calendar .days li {
        font-size: 12px;
        text-transform: capitalize;
    }

    .custom-container .calendar-filter .calendar-showall-btn {
        font-size: 12px;
    }

    .custom-container .calendar-filter .calendar-today-btn {
        font-size: 12px;
    }



    /* .custom-container .calendar-filter #calendar-filter-coach-name {
        font-size: 12px;
    } */

    #filter-data-show .class-item-card .class-item-title {
        padding-top: 20px;
        font-size: 16px;
    }

    #filter-data-show .class-item-card .class-item-description {
        font-size: 14px;
    }

    #tip-and-tutorial-container {
        width: 100%;
    }

    #tip-and-tutorial-container .video-item {
        padding: 10px;
    }

    #tip-and-tutorial-container .video-item-title {
        font-size: 14px;
    }

    #tip-and-tutorial-container .video-item-description {
        font-size: 12px;
    }

    #tip-and-tutorial-container .read-more-button {
        font-size: 12px;
    }

    .image-box-height {
        height: 80px;
    }

    #tip-and-tutorial-container .video-feature-image .overlay {
        height: 80px;
    }

    select {
        font-size: 12px;
    }

    .yoga-type-page-cover {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .annoucement-page-container {
        width: 100%;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
/* @media screen and (min-width: 600px) {
    #main-cover .main-cover-title {
        padding-top: 90px;
    }

    .homepage-class-top-header {
        text-align: center;
        padding-bottom: 20px;
    }

    #benefit-of-yoga-section .homepage-description-card {
        padding: 30px 0px;
    }

    #footer .footer-about-text {
        width: 100%;
    }
} */

/* Medium devices (landscape tablets, 768px and up) */
/* @media only screen and (min-width: 768px) {
    #main-cover .main-cover-title {
        padding-top: 0px;
    }

    .homepage-class-top-header {
        text-align: left;
        padding-bottom: 0px;
    }

    #benefit-of-yoga-section .homepage-description-card {
        padding: 30px 200px;
    }

    #footer .footer-about-text {
        width: 80%;
    }
} */

/* Large devices (laptops/desktops, 992px and up) */
/* @media only screen and (min-width: 992px) {
    #main-cover .main-cover-title {
        padding-top: 0px;
    }

    .homepage-class-top-header {
        text-align: left;
        padding-bottom: 0px;
    }

    #benefit-of-yoga-section .homepage-description-card {
        padding: 30px 200px;
    }

    #footer .footer-about-text {
        width: 80%;
    }
} */

/* Extra large devices (large laptops and desktops, 1200px and up) */
/* @media only screen and (min-width: 1200px) {
    #main-cover .main-cover-title {
        padding-top: 0px;
    }

    .homepage-class-top-header {
        text-align: left;
        padding-bottom: 0px;
    }

    #benefit-of-yoga-section .homepage-description-card {
        padding: 30px 200px;
    }

    #footer .footer-about-text {
        width: 80%;
    }
} */


.homepage-class-swiper {

    .swiper-pagination {
        position: relative;
        padding-top: 35px;

        .swiper-pagination-bullet {
            background-color: #2c456b;
            width: 35px;
            height: 8px;
            border-radius: 5px;
        }
    }
}

.homepageMainCover {
    .heroSwiper {
        width: 100%;
        height: 650px;
        /* Full screen height */
        position: relative;
    }

    .hero-slide {
        position: relative;
        display: flex;
        align-items: center;
        /* Centers text vertically */
        justify-content: center;
        /* Centers text horizontally */
        text-align: center;
        color: #ffffff;
        overflow: hidden;
    }

    /* Option 1: Background Image Styling */
    .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    /* Option 2: Background Video Styling */
    .hero-bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Keeps aspect ratio and fills container */
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    /* Dark overlay to make white text pop out clearly */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        /* Adjust darkness here */
        z-index: 2;
    }

    /* Content wrapper */
    .hero-content {
        position: relative;
        z-index: 3;
        max-width: 800px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    /* Button Styling */
    .hero-btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: #3c649fd1;
        color: #fff;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        transition: background 0.3s ease;
    }

    .hero-btn:hover {
        background-color: white;
        color: #3c649f;
    }

    /* Swiper Theme Customization (White navigation for dark theme) */
    .heroSwiper .swiper-pagination {
        padding-bottom: 20px;
    }

    .heroSwiper .swiper-pagination-bullet {
        background-color: white;
        width: 40px;
        height: 10px;
        border-radius: 10px;
        border: 2px solid white;
    }

    /* .heroSwiper .swiper-pagination-bullet-active {
        background-color: white;
        border-color: white;
    } */

    /* Responsive adjustments for mobile */
    @media (max-width: 768px) {
        .heroSwiper {
            height: 550px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-description {
            font-size: 1rem;
        }
    }
}